home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / PPCSmallEiffel / bin_c / smake_short < prev    next >
Encoding:
Text File  |  1998-02-27  |  747 b   |  18 lines

  1. #SAS/C smakefile for powerUP (TM) PPC Amiga systems
  2. #(for 68k Amigas, it should suffice to change "CC" and "STARTUP" below)
  3. #written by Andreas R. Kleinert in 1998
  4.  
  5. CC      = SCPPC
  6. STARTUP = LIB:c_ppc.o
  7. PROG    = /bin/short
  8. PROG2   = ../bin/short
  9. OBJS    = short38.o short37.o short36.o short35.o short34.o short33.o short32.o short31.o \
  10.  short30.o short29.o short28.o short27.o short26.o short25.o short24.o short23.o \
  11.  short22.o short21.o short20.o short19.o short18.o short17.o short16.o short15.o \
  12.  short14.o short13.o short12.o short11.o short10.o short9.o  short8.o  short7.o  \
  13.  short6.o  short5.o  short4.o  short3.o  short2.o  short1.o
  14.  
  15. $(PROG): $(OBJS)
  16.  
  17.          ppc-amigaos-ld -r $(STARTUP) $(OBJS) LIB:scppc.a lib:end.o -o $(PROG2)
  18.